home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': 'PSP 7 Preset Converter',
- 'Copyright': '',
- 'Description': 'Custom 6 Enamel preset',
- 'Host': 'Paint Shop Pro 8',
- 'Host Version': '8.00',
- }
-
- def Preset_Enamel():
- return {
- 'GeneralSettings': {
- 'AutoActionMode': 0,
- 'ExecutionMode': 0
- },
- 'Color': (255, 255, 255),
- 'Density': 128,
- 'Angle': 225,
- 'Detail': 100,
- 'Blur': 50,
- }
-
- def Do(Environment):
- App.Do(Environment, 'Enamel', Preset_Enamel())
-